home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 February
/
Macworld (1999-02).dmg
/
Serious Demos
/
Geo3D 1.1.4
/
ScriptGroups
< prev
Wrap
Text File
|
1998-10-13
|
463b
|
21 lines
-- Geo3D
-- Test Groups
tell application "Geo3D"
activate
make new document
set x to import groups from file "Demo.grp"
if x > 0 then -- 0: error; x includes menu separators!
fit to screen
repeat with x from 1 to x
show group x -- without multi (default)
end repeat
show -- show all
show with multi -- hide all
repeat with x from 1 to 4
show group x with multi
end repeat
show group 3 with multi -- hide group 3
stack
end if
end tell